home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / db_details_export.php < prev    next >
PHP Script  |  2005-02-16  |  2KB  |  65 lines

  1. <?php
  2. /* $Id: db_details_export.php,v 2.4 2005/02/16 16:05:48 rabus Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets some core libraries
  8.  */
  9. $sub_part  = '_export';
  10. require('./db_details_common.php');
  11. $url_query .= '&goto=db_details_export.php';
  12. require('./db_details_db_info.php');
  13. ?>
  14. <!-- Dump of Database -->
  15. <?php
  16. /**
  17.  * Displays the form
  18.  */
  19. $export_page_title = $strViewDumpDB;
  20.  
  21. $multi_values = '';
  22. if ($num_tables > 1) {
  23.  
  24.     $multi_values = '<div align="center"><select name="table_select[]" size="6" multiple="multiple">';
  25.     $multi_values .= "\n";
  26.  
  27.     for ($i = 0; $i < $num_tables; $i++) {
  28.         if (PMA_MYSQL_INT_VERSION >= 50000 && is_null($tables[$i]['Engine'])) {
  29.             // Don't offer to export views yet.
  30.             continue;
  31.         }
  32.         $table   = $tables[$i]['Name'];
  33.         if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $table . '|'))) {
  34.             $is_selected = ' selected="selected"';
  35.         } else {
  36.             $is_selected = '';
  37.         }
  38.         $table   = htmlspecialchars($table);
  39.         $multi_values .= '                <option value="' . $table . '"' . $is_selected . '>' . $table . '</option>' . "\n";
  40.     } // end for
  41.     $multi_values .= "\n";
  42.     $multi_values .= '</select></div>';
  43.  
  44.     $checkall_url = 'db_details_export.php?'
  45.                   . PMA_generate_common_url($db)
  46.                   . '&goto=db_details_export.php';
  47.  
  48.     $multi_values .= '<br />
  49.             <a href="' . $checkall_url . '&selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
  50.              / 
  51.             <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
  52. } elseif ($num_tables == 0) {
  53.     echo $strDatabaseNoTable;
  54.     require_once('./footer.inc.php');
  55. } // end if
  56.  
  57. $export_type = 'database';
  58. require_once('./libraries/display_export.lib.php');
  59.  
  60. /**
  61.  * Displays the footer
  62.  */
  63. require_once('./footer.inc.php');
  64. ?>
  65.